home *** CD-ROM | disk | FTP | other *** search
/ Internet.Works 39 / Issue 39.iso / pc / PCSoftware / RoboHelp / DISK1 / DATA.1 / SeeAlso.ocx / string.txt next >
Encoding:
Text File  |  2000-08-03  |  2.8 KB  |  47 lines

  1. 1    See Also
  2. 2    See Also Property
  3. 100    See Also
  4. 101    See Also Property
  5. 102    Button
  6. 103    RoboHELP HTML is not running or could not be located. This control can only be used in conjunction with RoboHELP HTML.
  7. 104    RoboHELP HTML could not be located. You may need to reinstall RoboHELP HTML.
  8. 105    One or more specified topics could not be found in the current project.
  9. 106    Title
  10. 107    &Title
  11. 108    (hidden)
  12. 109    bmp
  13. 110    Button Image Files (*.bmp;*.ico)|*.bmp;*.ico||
  14. 111    This image file is not in the project and must be copied to the project folder prior to use. Copy '%s' to the project folder?
  15. 112    The file already exists in the project folder. Do you want to overwrite it?
  16. 113    The file could not be copied. The target folder or file may not be writable.
  17. 114    See Also
  18. 115    See Also
  19. 116    (bitmap goes here)
  20. 117    (icon goes here)
  21. 118    *.bmp;*.ico
  22. 119    You must specify an image filename.
  23. 120    All Image Types|*.bmp;*.cur;*.dib;*.ico|Bitmaps (*.bmp;*.dib)|*.bmp;*.dib|Icons/Cursors (*.ico;*.cur)|*.ico;*.cur||
  24. 121    This file is not in the project and must be copied into project folder prior to use. Continue?
  25. 122    The file '%s' exists. Overwrite it?
  26. 123    Can not copy file '%s' to '%s'.
  27. 128    <OBJECT
  28. \n  CLASSID="clsid:ADB880A6-D8FF-11CF-9377-00AA003B7A11"
  29. \n  ID="%s"  TYPE="application/x-oleobject">
  30. \n
  31. 129      <PARAM  NAME="Command"  VALUE="%s">
  32. \n  <PARAM  NAME="Button"  VALUE="%s">
  33. \n
  34. 130      <PARAM  NAME="%s"  VALUE="%s">
  35. \n
  36. 131    </OBJECT>
  37. \n
  38. 132    ALink
  39. 133    ALink,MENU
  40. 134      <PARAM  NAME="Item%d"  VALUE="%s">
  41. \n
  42. 135      <PARAM  NAME="Flags"  VALUE=",,1">
  43. \n
  44. 10064    Help
  45. 10065    Please make sure there is only one RoboHTML instance running.
  46. 57344    See Also
  47. 57345    See Also Properties
  48. 57346    Display
  49. 57347    The term "%1" is already listed in the ALink Control.
  50. 57348    (not specified)
  51. 57349    _blank
  52. 57350    _parent
  53. 57351    _self
  54. 57352    _top
  55. 57353        CString strCaptionStyle;
  56. \n
  57. \n    CString strCommand;
  58. \n    if( m_nDialogDisplay )
  59. \n        strCommand.LoadString( IDS_RTS_COMMAND_MENU );
  60. \n    else
  61. \n        strCommand.LoadString( IDS_RTS_COMMAND );
  62. \n
  63. \n    if(!m_bIcon)
  64. \n    {// The control Caption is in Text or for sripts
  65. \n        CString strTemp = _T("Text:");
  66. \n        //strTemp += InternalGetText();
  67. \n        strTemp += m_strText;
  68. \n        strCaptionStyle.Format( IDS_RTS_BODY, strCommand, strTemp );
  69. \n    }
  70. \n    else if( m_bIcon )
  71. \n    {// The control Caption is in Image
  72. \n        CString strTemp ;
  73. \n        if( m_hIcon )
  74. \n            strTemp = _T("Icon:");
  75. \n        else
  76. \n            strTemp = _T("Bitmap:");
  77. \n        strTemp += m_strImage;
  78. \n        strCaptionStyle.Format( IDS_RTS_BODY, strCommand, strTemp );
  79. \n    }
  80. \n
  81. \n    CString strFont, strFontInfo = GetFontInfo();
  82. \n    strFont.Format( IDS_RTS_PARAM, _T("Font"), strFontInfo );
  83. \n
  84. \n    CString strWindow;
  85. \n    strWindow.Format( IDS_RTS_PARAM, _T("Window"), m_csWindow );
  86. \n
  87. \n    CString strFrame;
  88. \n    strFrame.Format( IDS_RTS_PARAM, _T("Frame"), m_csFrame );
  89. \n
  90. \n    strText.LoadString( IDS_RTS_HEAD );
  91. \n    strText += strCaptionStyle;
  92. \n    strText += s
  93.